ShortIterator

abstract class ShortIterator : Iterator<Short>

An iterator over a sequence of values of type Short.

Constructors

ShortIterator
Link copied to clipboard
fun ShortIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean

Returns true if the iteration has more elements.

next
Link copied to clipboard
operator override fun next(): Short

Returns the next element in the iteration.

nextShort
Link copied to clipboard
abstract fun nextShort(): Short

Returns the next value in the sequence without boxing.